home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / TECHNICA / COMPUTER / H254.ZIP / IRITSM3S.ZIP / DOCS / MAKEFILE.DJG < prev    next >
Text File  |  1992-02-27  |  563b  |  30 lines

  1. #
  2. # This is the make file for the docs directory using DJGCC on the IBMPC.
  3. #
  4. #                Gershon Elber, Dec 1991
  5. #
  6.  
  7. !include "..\makeflag.djg"
  8.  
  9.  
  10. all:    irit.tex irit.doc irit.hlp
  11.  
  12. HELP_OBJS = irithlp.o
  13.  
  14. irithlp.exe: $(HELP_OBJS)
  15.     $(CC) $(CFLAGS) -o irithlp $(HELP_OBJS)
  16.     aout2exe irithlp
  17.  
  18. install: irit.hlp
  19.     copy irit.hlp $(BIN_DIR)
  20.     del  irit.hlp
  21.  
  22. irit.tex: irithlp.exe irit.src
  23.     irithlp -l -o irit.tex irit.src
  24.  
  25. irit.hlp: irithlp.exe irit.src
  26.     irithlp -h -o irit.hlp irit.src
  27.  
  28. irit.doc: irithlp.exe irit.src
  29.     irithlp -t -o irit.doc irit.src
  30.